aboutsummaryrefslogtreecommitdiff
path: root/src/app/(main)/websites/[websiteId]/(reports)/funnels/page.tsx
blob: 2fdcf3b7b66c3475736eb2794f82ec597a20c50a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
import type { Metadata } from 'next';
import { FunnelsPage } from './FunnelsPage';

export default async function ({ params }: { params: Promise<{ websiteId: string }> }) {
  const { websiteId } = await params;

  return <FunnelsPage websiteId={websiteId} />;
}

export const metadata: Metadata = {
  title: 'Funnels',
};